home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / pine3.92 / pine / osdep / tempnam.dos < prev    next >
Text File  |  1994-08-24  |  2KB  |  76 lines

  1. #line 2 "osdep/tempnam.dos"
  2. /*
  3.  * This routine is derived from BSD4.3 code,
  4.  * Copyright (c) 1988 Regents of the University of California.
  5.  * All rights reserved.
  6.  */
  7. #if defined(LIBC_SCCS) && !defined(lint)
  8. static char sccsid[] = "@(#)tmpnam.c    4.5 (Berkeley) 6/27/88";
  9. #endif /* LIBC_SCCS and not lint */
  10. /*----------------------------------------------------------------------
  11.       Return a unique file name in a given directory.  This is not quite
  12.       the same as the usual tempnam() function, though it is very similar.
  13.       We want it to use the TMP environment variable only if dir is NULL,
  14.       instead of using TMP regardless if it is set.
  15.  
  16.   Args: dir      -- The directory to create the name in
  17.         prefix   -- Prefix of the name
  18.  
  19.  Result: Malloc'd string equal to new name is returned.  It must be free'd
  20.      by the caller.  Returns the string on success and NULL on failure.
  21.   ----*/
  22. char *
  23. temp_nam(dir, prefix)
  24.     char *dir, *prefix;
  25. {
  26.     struct stat buf;
  27.     char *f, *name;
  28.     char *mktemp();
  29.  
  30.     if (!(name = malloc((unsigned int)MAXPATH)))
  31.         return(NULL);
  32.  
  33.     if (!dir && ((f = getenv("TMP")) || (f = getenv("TEMP"))) &&
  34.              !stat(f, &buf) && (buf.st_mode&S_IFMT) == S_IFDIR &&
  35.              !can_access(f, WRITE_ACCESS)) {
  36.         (void)strcpy(name, f);
  37.         goto done;
  38.     }
  39.  
  40.     if (dir) {
  41.     strcpy(name, dir);
  42.     if(!*dir || (isalpha(*dir) && *(dir+1) == ':' && !*(dir+2)))
  43.       strcat(name, "\\");
  44.  
  45.     if((!stat(name, &buf) && (buf.st_mode&S_IFMT) == S_IFDIR)
  46.             && !can_access(name, WRITE_ACCESS)) {
  47.             (void)strcpy(name, dir);
  48.             goto done;
  49.     }
  50.     }
  51.  
  52. #ifndef P_tmpdir
  53. #define    P_tmpdir    "\\tmp"
  54. #endif
  55.     if (!stat(P_tmpdir, &buf) &&
  56.                          (buf.st_mode&S_IFMT) == S_IFDIR &&
  57.              !can_access(P_tmpdir, WRITE_ACCESS)) {
  58.         (void)strcpy(name, P_tmpdir);
  59.         goto done;
  60.     }
  61.  
  62.     free(name);
  63.     return(NULL);
  64.  
  65. done:
  66.     if(name[0] && name[strlen(name)-1] != '\\')
  67.       (void)strcat(name, "\\");
  68.  
  69.     if (prefix)
  70.         (void)strcat(name, prefix);
  71.     (void)strcat(name, "XXXXXX");
  72.     return(mktemp(name));
  73. }
  74.  
  75.  
  76.